allEqual
Check if all elements in an array are equal.
Use Array.prototype.every() to check if all the elements of the array are the same as the first one.
Elements in the array are compared using the strict comparison operator, which does not account for NaN self-inequality.
確認陣列裡面的所有元素是否相等,
使用every() 檢查陣列中的所有元素是否與第一個元素相同。
const allEqual = arr => arr.every(val => val === arr[0]);
EXAMPLES
allEqual([1, 2, 3, 4, 5, 6]); // false
allEqual([1, 1, 1, 1]); // true
1.some()
some() -> some 某一個:有一個元素符合條件就回傳true。
some()可以用來檢查陣列中是否有「某一個」元素符合條件。如果「其中一個」元素符合條件就回傳 true。